@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
/*初始化*/
blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    vertical-align: baseline;
}

html {
    font-size: 10px;
}

/* body {
    font-size: 1.4rem;
    background-color: #f2f2f2 !important;
    font-family: Microsoft YaHei, tahoma, arial, Hiragino Sans GB, \\5b8b\4f53, sans-serif;
} */

/*清除列表的默认风格*/
ul, ol, dl {
    list-style: none;
}

/*表单相关的元素*/
fieldset, img, input, button, textarea{
    border: none;
    margin: 0;
    padding: 0;
    /*去除外边线*/
    outline: none;
}
/*超链接标签*/
a{
    color: #000;text-decoration: none;
}
/*h家族*/
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
    font-size: 100%;
}
/*浮动*/
.fl{
    float: left;
}

.fr{
    float: right;
}
/*清除浮动*/
.clearfix::before,
.clearfix::after{
    content: '';
    display: table;
    clear: both;
}
/*版心*/
.w{
    width: 119rem;
    margin: 0 auto;
}

/*水平对齐方式*/
.tl{
    text-align: left;
}

.tr{
    text-align: right;
}

.tc{
    text-align: center;
}

/* 文本单行超出隐藏 */
.textEllipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #F0F0F0;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #999;
}

/*页面通用颜色*/
.f60{
    color: #f8b62b;
}

/*清除语义化标签的默认样式*/
s, i{
    font-style: normal;
    text-decoration: none;
}
.ui_body{
    width: 100%;
    background: #ffffff;
}
/* 公共导航栏样式 */
.ui_nav{
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
    padding: 1vh 0 1.85vh 0;
}
.ui_nav_tab{
    width: 73.96vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.ui_nav_left{
    font-size: 0.94vw;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    display: flex;
    align-items: center;
}
.ui_nav_left img{
    width: 0.94vw;
    height: 1.67vh;
    margin-right: 0.47vw;
    display: block;
    object-fit: contain;
}
.ui_nav_left span{
    margin:0 0.52vw;
}
.ui_nav_left a:hover{
    color: #4589F0;
}
.ui_nav_right{
    display: flex;
    align-items: center;
    font-size: 0.94vw;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
}
.ui_nav_right a{
    display: block;
    padding: 1.85vh 0;
    margin: 0 1vw;
    border-bottom: 2px solid #fff;
}
.ui_nav_right a:hover{
    color: #4589F0;
}
.ui_nav_right .active{
    color: #4589F0;
    border-bottom: 2px solid #4589F0;
}